html

Purpose

The simplest way is to use a XUL component called html to embed whatever HTML tags you want to send directly to the browser. Rather, they are stored in the content property. Notice you can use EL expressions in it.

Examples

<z:window id="win" title="Html Demo" border="normal" width="300px">
    <z:html>
        <span id="...">
            <h4>Hi, Html Demo</h4>
            <p>It is the content of the html component.</p>
        </span>
    </z:html>
</z:window>

Description

Attributes

ZK Official Reference

Component Reference

Show html Component Reference

Java API

Show html Java API